Micron Document
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
| SparkN0de-git | SparkN0de |
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------


Commit f90fe553725d9374a7b13a96d2133f2a4c8815ff


Parents : 1e98d8e
Author : Sudo-Ivan <ivan@quad4.io>
Signature : Signature validation error
Date : 2026-01-04T23:19:38-06:00

feat(styles): add spin-reverse animation and corresponding class for enhanced loading effects

Changes

1 files changed, 13 insertions(+), 0 deletions(-)


Diff

diff --git a/meshchatx/src/frontend/style.css b/meshchatx/src/frontend/style.css
index 9e9cc942..c5b0f798 100644
--- a/meshchatx/src/frontend/style.css
+++ b/meshchatx/src/frontend/style.css
@@ -167,3 +167,16 @@ select.input-field option {
-ms-overflow-style: none;
scrollbar-width: none;
}
+
+@keyframes spin-reverse {
+ from {
+ transform: rotate(360deg);
+ }
+ to {
+ transform: rotate(0deg);
+ }
+}
+
+.animate-spin-reverse {
+ animation: spin-reverse 1s linear infinite;
+}


──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────